##############################################################
## MOD Title: Effects Store
## MOD Author: Thoul < thoul@phpbbsmith.com > (Jeremy Rogers) http://www.phpbbsmith.com
## MOD Description: Adds a special effects store to Shop 3.
## MOD Version: 2.0.1
##
## Installation Level: Easy
## Installation Time: 3 Minutes
## Files To Edit:
##		index.php
## Included Files:
##		shop_effects.php
## License: contrib/license.txt GNU General Public License v2
##############################################################
## Author Notes:
##
## These are instructions from upgrading this modification from version 2.0.0 to
## version 2.0.1.
##
## If you have not yet installed version 2.0.0 or are installing this
## modification for the first time, please see the instructions in
## install.txt instead.
##
##############################################################
## BEFORE FOLLOWING THESE INSTRUCTIONS, YOU SHOULD BACK UP ALL RELATED FILES.
##############################################################

#
#-----[ COPY ]------------------------------------------
#

copy root/shop_effects.php to shop_effects.php

#
#-----[ OPEN ]------------------------------------------
#
index.php

#
#-----[ FIND ]--------------------------------------
#

$userdata = session_pagestart($user_ip, PAGE_INDEX);
init_userprefs($userdata);
//
// End session management
//

#
#-----[ AFTER, ADD ]--------------------------------------
#

//------------------------------------------------------------------------------
// Effects Store - Begin Code Alteration
//
require_once($phpbb_root_path . 'mods/effects_store/class_display.' . $phpEx);
//
// Effects Store - End Code Alteration
//------------------------------------------------------------------------------

#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM